home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Language
/
Compiler
/
assert.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-08-16
|
243 b
|
20 lines
/*
* @(#)assert.c 1.2 3/18/87
*/
char assertMessage[] = "Assertion failed: file %s, line %d\n";
#include <stdio.h>
#ifdef vax
void _flushall()
{
extern int fflush();
_fwalk(fflush);
}
abort()
{
_flushall();
asm(" halt");
}
#endif